home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / clrcntl1.zip / CLRTEST.H < prev    next >
C/C++ Source or Header  |  1991-06-15  |  751b  |  33 lines

  1. /*
  2. Header file for CLRTEST.EXE - Color selector custom control test program
  3.  
  4. (C) Scott Gourley, 1991.
  5. */
  6.  
  7. /* ids for menu options */
  8.  
  9. #define IDM_EXIT        1
  10. #define IDM_CLRTEST        2
  11. #define IDM_INDEXHELP    3
  12. #define IDM_COMMANDHELP    4
  13. #define IDM_USINGHELP    5
  14. #define IDM_ABOUT        6
  15.  
  16. /* default color selections */
  17.  
  18. #define CLRTEST_TEXT_COLOR            RGB (0xFF, 0xFF, 0x00); // (bright yellow)
  19. #define CLRTEST_BACKGROUND_COLOR    RGB (0x00, 0x00, 0xFF); // (bright blue)
  20.  
  21. /* prototype for color selector test dialog */
  22.  
  23. BOOL FAR PASCAL ClrTestDlgProc
  24.     (HWND hDlg, WORD message, WORD wParam, LONG lParam);
  25.  
  26. /* filenames for program */
  27.  
  28. #define CLRCTRL_HLPNAME    "CLRCTRL.HLP"
  29.  
  30. /* Id's for color selector test dialog */
  31.  
  32. #include "clrtestd.h"
  33.